Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
GoikLectures
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Goik Martin
GoikLectures
Commits
d639942f
Commit
d639942f
authored
8 years ago
by
Goik Martin
Browse files
Options
Downloads
Patches
Plain Diff
MongoDB exercise
parent
c33ec8cf
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Doc/Sda1/mongodb.xml
+215
-10
215 additions, 10 deletions
Doc/Sda1/mongodb.xml
with
215 additions
and
10 deletions
Doc/Sda1/mongodb.xml
+
215
−
10
View file @
d639942f
...
@@ -36,28 +36,233 @@
...
@@ -36,28 +36,233 @@
like:
</para>
like:
</para>
<programlisting
language=
"json"
>
{
<programlisting
language=
"json"
>
{
"lecture" : {
"title" : "Software development 1",
"title" : "Software development 2",
"prerequisites" : [113105, 113102]
},
"studyCourse" : "MIB",
"studyCourse" : "MIB",
"programme" : "Bachelor",
"programme" : "Bachelor",
"recommendedSemesters" : {
"recommendedSemesters" : {
"semester" : [4, 6, 7],
"semester" : [1, 2]
" comment" : "Advanced topics"
},
"lecture_id" : 113105
}
{
"title" : "Software development 2",
"prerequisites" : [113105, 113102],
"studyCourse" : "MIB",
"programme" : "Bachelor",
"recommendedSemesters" : {
"semester" : [2, 3, 4]
},
},
"lecture_id" : 113213
"lecture_id" : 113213
}
</programlisting>
}
<para>
Modify attribute values to create at least three
{
different lectures.
</para>
"title" : "Object Recognition in Image and Video Data",
"studyCourse" : "CSM",
"programme" : "Master",
"recommendedSemesters" : {
"semester" : [1, 2, 3]
},
"lecture_id" : 143108
}
</programlisting>
</listitem>
<listitem
xml:id=
"sda1ItemMongoDefineIndex"
>
<para>
Define a
<link
xlink:href=
"https://docs.mongodb.com/manual/core/index-unique"
>
unique
index
</link>
on the
<property>
lecture_id
</property>
property
and check whether the MongoDB Server rejects an attempt
inserting a duplicate key value.
</para>
</listitem>
</listitem>
<listitem>
<listitem>
<para/>
<para>
List all index definitions.
</para>
</listitem>
<listitem>
<para>
Taking a glimpse at
<link
xlink:href=
"https://docs.mongodb.com/getting-started/shell/query"
>
Find
or Query Data with the mongo Shell
</link>
and craft the
following queries:
</para>
<orderedlist>
<listitem>
<para>
All lectures.
</para>
</listitem>
<listitem>
<para>
The (unique) lecture having
<property>
lecture_id
</property>
=113213.
</para>
</listitem>
<listitem>
<para>
All lectures belonging to a
<quote>
Master
</quote>
programme.
</para>
</listitem>
<listitem>
<para>
All lectures being recommended for semester
4.
</para>
</listitem>
<listitem>
<para>
All lectures
</para>
</listitem>
</orderedlist>
</listitem>
<listitem>
<para>
Drop your index definition from step
<xref
linkend=
"sda1ItemMongoDefineIndex"
/>
.
</para>
</listitem>
</listitem>
</orderedlist>
</orderedlist>
</question>
</question>
<answer>
<orderedlist>
<listitem>
<para>
Database server acknowledgement
<coref
linkend=
"sda1ProgMongoInsertAck"
/>
upon insertion of three
lectures
<coref
linkend=
"sda1ProgMongoInsertS1"
/>
,
<coref
linkend=
"sda1ProgMongoInsertS2"
/>
and
<coref
linkend=
"sda1ProgMongoInsertS1"
/>
:
</para>
<programlisting
language=
"json"
>
db.university.insertMany(
[
{
"title" : "Software development 1",
"studyCourse" : "MIB",
"programme" : "Bachelor",
"recommendedSemesters" : {
"semester" : [1, 2]
},
"lecture_id" : 113105
}, {...
}
]);
{
"acknowledged" : true,
<co
xml:id=
"sda1ProgMongoInsertAck"
/>
"insertedIds" : [
ObjectId("586942cb27e04cf209347687"),
<co
xml:id=
"sda1ProgMongoInsertS1"
/>
ObjectId("586942cb27e04cf209347688"),
<co
xml:id=
"sda1ProgMongoInsertS2"
/>
ObjectId("586942cb27e04cf209347689")
<co
xml:id=
"sda1ProgMongoInsertS3"
/>
]
}
</programlisting>
</listitem>
<listitem>
<para>
Defining a
<link
xlink:href=
"https://docs.mongodb.com/manual/core/index-unique"
>
unique
index
</link>
on the
<property>
lecture_id
</property>
property:
</para>
<programlisting
language=
"json"
>
>
db.university.createIndex( { "lecture_id": 1 }, { unique: true } )
{
"createdCollectionAutomatically" : false,
"numIndexesBefore" : 1,
"numIndexesAfter" : 2,
"ok" : 1
}
</programlisting>
<para>
Now a duplicate key value insert attempt gets flagged
as an error:
</para>
<programlisting
language=
"json"
>
db.university.insert({
"title" : "Object Recognition in Image and Video Data",
...
"lecture_id" : 143108 })
WriteResult({
"nInserted" : 0,
"writeError" : {
"code" : 11000,
"errmsg" : "E11000 duplicate key error collection: test.university index:
lecture_id_1 dup key: { : 143108.0 }"
}
})
</programlisting>
</listitem>
<listitem>
<para>
Obtaining a list of all index definitions:
</para>
<programlisting
language=
"json"
>
>
db.university.getIndexes()
[
{
<co
linkends=
"sda1CalloutMongoListIndexes-1"
xml:id=
"sda1CalloutMongoListIndexes-1-co"
/>
"v" : 2,
"key" : {
"_id" : 1
},
"name" : "_id_",
"ns" : "test.university"
},
{
<co
linkends=
"sda1CalloutMongoListIndexes-2"
xml:id=
"sda1CalloutMongoListIndexes-2-co"
/>
"v" : 2,
"unique" : true,
"key" : {
"lecture_id" : 1
},
"name" : "lecture_id_1",
"ns" : "test.university"
}
]
>
</programlisting>
<calloutlist>
<callout
arearefs=
"sda1CalloutMongoListIndexes-1-co"
xml:id=
"sda1CalloutMongoListIndexes-1"
>
<para>
First index being automatically generated by
MogoDB.
</para>
</callout>
<callout
arearefs=
"sda1CalloutMongoListIndexes-2-co"
xml:id=
"sda1CalloutMongoListIndexes-2"
>
<para>
Custom key definition from previous step.
</para>
</callout>
</calloutlist>
</listitem>
<listitem>
<para>
Taking a glimpse at
<link
xlink:href=
"https://docs.mongodb.com/getting-started/shell/query"
>
Find
or Query Data with the mongo Shell
</link>
and craft the
following queries:
</para>
<orderedlist>
<listitem>
<para>
All lectures.
</para>
</listitem>
<listitem>
<para>
The (unique) lecture having
<property>
lecture_id
</property>
=113213.
</para>
</listitem>
<listitem>
<para>
All lectures belonging to a
<quote>
Master
</quote>
programme.
</para>
</listitem>
<listitem>
<para>
All lectures being recommended for semester
4.
</para>
</listitem>
<listitem>
<para>
All lectures
</para>
</listitem>
</orderedlist>
</listitem>
<listitem>
<para>
Dropping a custom index:
</para>
<programlisting
language=
"json"
>
>
db.university.dropIndex( { "lecture_id": 1 } )
{ "nIndexesWas" : 2, "ok" : 1 }
</programlisting>
</listitem>
</orderedlist>
</answer>
</qandaentry>
</qandaentry>
</qandadiv>
</qandadiv>
</qandaset>
</qandaset>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment