Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
ipgallery
/
devops
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Registry
Issues
0
Merge Requests
0
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
38f89f19
authored
Apr 26, 2020
by
adia
Browse files
Options
_('Browse Files')
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
61083d5b
a3b5da65
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
57 additions
and
6 deletions
common/docs/Accounts.odt
common/docs/UsefulCommands.txt
common/docs/elasticsearch-rest.txt
common/docs/knowledgeBase/submit-flink-job.txt
config/ipgallery-mcz/config/docker/upload-datasets.sh
common/docs/Accounts.odt
View file @
38f89f19
No preview for this file type
common/docs/UsefulCommands.txt
View file @
38f89f19
[adding your ssh key to a remote server]
[adding your ssh key to a remote server]
create public key:
ssh-keygen -t rsa
copy it:
cat ~/.ssh/id_rsa.pub | ssh root@[ip/domain] "cat >> ~/.ssh/authorized_keys"
cat ~/.ssh/id_rsa.pub | ssh root@[ip/domain] "cat >> ~/.ssh/authorized_keys"
[install R]
[install R]
...
...
common/docs/elasticsearch-rest.txt
View file @
38f89f19
...
@@ -5,19 +5,22 @@ https://www.elastic.co/guide/en/kibana/5.5/_configuring_kibana_on_docker.html
...
@@ -5,19 +5,22 @@ https://www.elastic.co/guide/en/kibana/5.5/_configuring_kibana_on_docker.html
# show indices and size
# show indices and size
curl 172.16.1.72:9200/_cat/indices?v
curl 172.16.1.72:9200/_cat/indices?v
# delete specific document by id (_id)
curl -XDELETE http://localhost:9200/activityidx_v2/activity/AXEQN08B5-afsw1eO1rt
#create index with mapping
#create index with mapping
curl -XPUT "http://localhost:9200/activityidx" -d'{ "mappings": { "activity": { "properties": { "metaData.loc": { "type": "geo_point" } } } } }'
curl -XPUT "http://localhost:9200/activityidx" -d'{ "mappings": { "activity": { "properties": { "metaData.loc": { "type": "geo_point" } } } } }'
- https://www.elastic.co/blog/changing-mapping-with-zero-downtime
- https://www.elastic.co/blog/changing-mapping-with-zero-downtime
Steps to change mapping type by reindexing and alias on a new index (using the kibana tools):
Steps to change mapping type by reindexing and alias on a new index (using the kibana tools):
1 - get the mapping of the original index: GET activityidx/_mapping (delete the starting field 'activityidx)
1 - get the mapping of the original index: GET activityidx/_mapping (delete the starting field 'activityidx)
2 - create a json file with the changed mapping
2 - create a json file with the changed mapping
(without the index name at the begining of json)
3 - curl -XPUT localhost:9200/activityidx_v1 -H 'Content-Type: application/json' -d @index-mapping (using curl)
3 - curl -XPUT localhost:9200/activityidx_v1 -H 'Content-Type: application/json' -d @index-mapping (using curl)
4 reindex to the new original to the new one:
4 reindex to the new original to the new one:
POST _reindex
POST _reindex
{
{
"conflicts": "proceed",
"conflicts": "proceed",
"source": {
"source": {
"index": "activityidx"
"index": "activityidx
_v2
"
},
},
"dest": {
"dest": {
"index": "activityidx_v1"
"index": "activityidx_v1"
...
@@ -42,11 +45,11 @@ curl -XDELETE http://localhost:9200/.kibana
...
@@ -42,11 +45,11 @@ curl -XDELETE http://localhost:9200/.kibana
curl -XDELETE http://localhost:9200/*
curl -XDELETE http://localhost:9200/*
# query less then date
# query less then date
curl -XPOST 'http://
172.16.1.72:9200/activityidx
/activity/_search' -d '{
curl -XPOST 'http://
localhost:9200/activityidx_v2
/activity/_search' -d '{
"query": {
"query": {
"range": {
"range": {
"published": {
"published": {
"
l
te": "now-90d"
"
g
te": "now-90d"
}
}
}
}
}
}
...
@@ -214,11 +217,11 @@ es2csv -q 'type:"thing/traffic-lane" AND userId:"chicago/*"' -u 172.16.1.72:9200
...
@@ -214,11 +217,11 @@ es2csv -q 'type:"thing/traffic-lane" AND userId:"chicago/*"' -u 172.16.1.72:9200
es2csv -q 'type:"thing/traffic-lane" AND userId:"chicago/*" AND creationTime:>1519895494000' -u 172.16.1.72:9200 -o activities-traffic-chicago.csv -m 100000 -i activityidx -f creationTime id type metaData.loc metaData.measures.speed metaData.measures.vehicleCount
es2csv -q 'type:"thing/traffic-lane" AND userId:"chicago/*" AND creationTime:>1519895494000' -u 172.16.1.72:9200 -o activities-traffic-chicago.csv -m 100000 -i activityidx -f creationTime id type metaData.loc metaData.measures.speed metaData.measures.vehicleCount
es2csv -r -q '{ "query":{"bool":{"must":[{"query_string":{"query":"tenant:fremont & type:\"thing/traffic-lanes\"" }}],"filter":{"geo_bounding_box":{"metaData.loc":{"top_left":{"lat" : 37.629134,"lon" : -122.173405 }, "bottom_right" : { "lat" : 37.457418, "lon" : -121.835116 }}}}}}}' -u 172.16.1.72:9200 -o activities-traffic-fremont.csv -m 100000 -i activityidx -f creationTime id type metaData.loc metaData.toLocation metaData.measures.speed
es2csv -r -q '{ "query":{"bool":{"must":[{"query_string":{"query":"tenant:fremont &
&
type:\"thing/traffic-lanes\"" }}],"filter":{"geo_bounding_box":{"metaData.loc":{"top_left":{"lat" : 37.629134,"lon" : -122.173405 }, "bottom_right" : { "lat" : 37.457418, "lon" : -121.835116 }}}}}}}' -u 172.16.1.72:9200 -o activities-traffic-fremont.csv -m 100000 -i activityidx -f creationTime id type metaData.loc metaData.toLocation metaData.measures.speed
es2csv -r -q '{ "query": { "bool": { "must": [ { "query_string":{ "query":"metaData.event:TrafficJam" } } ], "filter" : { "geo_bounding_box" : { "metaData.loc" :{ "top_left" : { "lat" : 37.460391, "lon" : -122.167106 }, "bottom_right" : { "lat" : 37.152796, "lon" : -121.538847 } } }}}}}' -u 167.99.206.187:9200 -o activities-sanjose-traffic-reports.csv -m 5000000 -i activityidx -f creationTime id type metaData
es2csv -r -q '{ "query": { "bool": { "must": [ { "query_string":{ "query":"metaData.event:TrafficJam" } } ], "filter" : { "geo_bounding_box" : { "metaData.loc" :{ "top_left" : { "lat" : 37.460391, "lon" : -122.167106 }, "bottom_right" : { "lat" : 37.152796, "lon" : -121.538847 } } }}}}}' -u 167.99.206.187:9200 -o activities-sanjose-traffic-reports.csv -m 5000000 -i activityidx -f creationTime id type metaData
es2csv -r -q '{ "query":{"bool":{"must":[{"query_string":{"query":"tenant:fremont & type:\"report/*\"" }}],"filter":[{"range": {"published": {"gte": 1576328644000,"format": "epoch_millis" }}},{"geo_bounding_box":{"metaData.loc":{"top_left":{"lat" : 37.629134,"lon" : -122.173405 }, "bottom_right" : { "lat" : 37.457418, "lon" : -121.835116 }}}}]}}}' -u 172.16.1.80:9200 -o reports-fremont.csv -m 100 -i activityidx -f creationTime id type metaData
es2csv -r -q '{ "query":{"bool":{"must":[{"query_string":{"query":"tenant:fremont &
&
type:\"report/*\"" }}],"filter":[{"range": {"published": {"gte": 1576328644000,"format": "epoch_millis" }}},{"geo_bounding_box":{"metaData.loc":{"top_left":{"lat" : 37.629134,"lon" : -122.173405 }, "bottom_right" : { "lat" : 37.457418, "lon" : -121.835116 }}}}]}}}' -u 172.16.1.80:9200 -o reports-fremont.csv -m 100 -i activityidx -f creationTime id type metaData
// CURATOR
// CURATOR
command line app for managing elasticsearch indices.
command line app for managing elasticsearch indices.
...
...
common/docs/knowledgeBase/submit-flink-job.txt
0 → 100644
View file @
38f89f19
# SUBMIT FLINK JOB
1 copy the job jar to /opt/mcx/config/flink/jobs/ or wget from archiva
e.g wget https://municipalitybank.com:8081/repository/internal/com/ipgallery/esp/activities-cep-job/1.0.2/activities-cep-job-1.0.2-all.jar
2 go to /opt/mcx/config/flink/jobs/
3 copy the job jar to flink jobmanager instance and start it:
$ JOBMANAGER_CONTAINER=$(docker ps --filter name=jobmanager --format={{.ID}})
$ docker cp path/to/jar "$JOBMANAGER_CONTAINER":/job.jar
$ docker exec -t -i "$JOBMANAGER_CONTAINER" flink run /job.jar
4 prey (;-)
config/ipgallery-mcz/config/docker/upload-datasets.sh
0 → 100755
View file @
38f89f19
#!/bin/bash
upload_file_owncloud
(){
curl
-X
PUT
-u
"test:giptmgrr"
"https://municipalitybank.com:8085/remote.php/dav/files/test/
${
2
}
/
${
1
}
"
--data-binary
@
"./
$1
"
}
create_dataset_reports
()
{
TENANT
=
$1
HOST
=
$2
CUR_TIMESTAMP
=
`
date
'+%s%3N'
`
# in mill-secs
#BACKWARD=604800000 # 7 days - 7 * 24 * 60 * 60 * 1000
#FROM_TIMESTAMP=$(( CUR_TIMESTAMP-BACKWARD ))
QUERY_JSON
=
"{
\"
query
\"
:{
\"
bool
\"
:{
\"
must
\"
:[{
\"
query_string
\"
:{
\"
query
\"
:
\"
tenant:
${
TENANT
}
&& type:
\\\"
report/*
\\\"\"
}}],
\"
filter
\"
:[{
\"
range
\"
: {
\"
published
\"
: {
\"
gte
\"
:
\"
now-7d
\"
,
\"
format
\"
:
\"
epoch_millis
\"
}}}]}}}"
TENANT_FILE_NAME
=
"reports-
${
TENANT
}
-
${
HOST
}
"
rm
${
TENANT_FILE_NAME
}*
.
*
# create dataset - last 7 days
CREATE_DATASET
=
`
es2csv
-r
-q
"
${
QUERY_JSON
}
"
-u
localhost:9200
-o
${
TENANT_FILE_NAME
}
.csv
-i
activityidx
-f
creationTime id
type
metaData
`
#CREATE_DATASET=`es2csv -r -q ${QUERY_JSON} { "query":{"bool":{"must":[{"query_string":{"query":"tenant:${TENANT} & type:\"report/*\"" }}],"filter":[{"range": {"published": {"gte": "now-7d","format": "epoch_millis" }}}]}}}' -u localhost:9200 -m 100 -o reports-${TENANT}.csv -i activityidx -f creationTime id type metaData`
echo
"
${
CUR_TIMESTAMP
}
- create dataset reports for
${
TENANT
}
:
${
CREATE_DATASET
}
"
>>
/opt/mcx/config/docker/upload-datasets.log
# gzip and upload
TODAY
=
`
date
'+%Y_%m_%d__%H_%M_%S'
`
;
TODAY_FILE
=
"
${
TENANT_FILE_NAME
}
-
$TODAY
"
mv
${
TENANT_FILE_NAME
}
.csv
${
TODAY_FILE
}
.csv
gzip
${
TODAY_FILE
}
.csv
# upload
echo
"Uploading
${
TODAY_FILE
}
to cloud"
upload_file_owncloud
"
${
TODAY_FILE
}
.csv.gz"
"Datasets/cities/
${
TENANT
}
/datasets"
}
create_dataset_reports
"fremont"
"integration"
create_dataset_reports
"chicago"
"integration"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment