Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
X
xanadu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
SYNERG
xanadu
Commits
ce252d85
Commit
ce252d85
authored
Mar 10, 2020
by
Nilanjan Daw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding preliminary support for explicit Function Chain
Support added for multi-function deployment
parent
96b1f069
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
206 additions
and
0 deletions
+206
-0
dispatch_system/dispatch_manager/explicit_chain_handler.js
dispatch_system/dispatch_manager/explicit_chain_handler.js
+206
-0
No files found.
dispatch_system/dispatch_manager/explicit_chain_handler.js
0 → 100644
View file @
ce252d85
'
use strict
'
;
const
express
=
require
(
'
express
'
)
const
libSupport
=
require
(
'
./lib
'
)
const
router
=
express
.
Router
()
const
fs
=
require
(
'
fs
'
)
const
{
spawn
}
=
require
(
'
child_process
'
)
const
fetch
=
require
(
'
node-fetch
'
)
const
constants
=
require
(
'
../constants.json
'
)
const
secrets
=
require
(
'
./secrets.json
'
)
let
metadataDB
=
`http://
${
secrets
.
couchdb_username
}
:
${
secrets
.
couchdb_password
}
@
${
constants
.
couchdb_host
}
`
metadataDB
=
metadataDB
+
"
/
"
+
constants
.
couchdb_db_name
+
"
/
"
const
logger
=
libSupport
.
logger
const
registry_url
=
constants
.
registry_url
router
.
post
(
'
/deploy
'
,
(
req
,
res
)
=>
{
// let runtime = req.body.runtime
let
files
=
req
.
files
const
chain_id
=
libSupport
.
makeid
(
constants
.
id_size
)
const
file_path
=
__dirname
+
"
/repository/
"
let
aliases
=
{}
let
deployHandles
=
[]
createDirectory
(
file_path
).
then
(()
=>
{
for
(
const
[
file_alias
,
file
]
of
Object
.
entries
(
files
))
{
if
(
file_alias
===
'
map
'
)
{
file
.
mv
(
file_path
+
'
map
'
+
chain_id
)
continue
}
let
functionHash
=
file
.
md5
aliases
[
file_alias
]
=
functionHash
deployHandles
.
push
(
deploy
(
file_path
,
functionHash
,
file
))
}
console
.
log
(
"
aliases
"
,
aliases
);
Promise
.
all
(
deployHandles
).
then
(()
=>
{
console
.
log
(
"
done
"
);
fs
.
writeFile
(
file_path
+
`aliases
${
chain_id
}
.json`
,
JSON
.
stringify
(
aliases
,
null
,
2
),
function
(
err
)
{
res
.
json
({
status
:
"
success
"
,
function_id
:
chain_id
})
})
}).
catch
(
err
=>
{
res
.
json
({
status
:
"
error
"
,
reason
:
err
}).
status
(
400
)
})
})
})
async
function
deploy
(
file_path
,
functionHash
,
file
)
{
let
runtime
=
"
container
"
,
memory
=
330
try
{
await
moveFile
(
file
,
file_path
,
functionHash
)
functionHash
=
libSupport
.
generateExecutor
(
file_path
,
functionHash
)
/**
* Adding meta caching via couchdb
* This will create / update function related metadata like resource limits etc
* on a database named "serverless".
*/
let
res
=
await
fetch
(
metadataDB
+
functionHash
)
let
json
=
await
res
.
json
()
console
.
log
(
json
);
if
(
json
.
error
===
"
not_found
"
)
{
logger
.
warn
(
"
New function, creating metadata
"
)
await
fetch
(
metadataDB
+
functionHash
,
{
method
:
'
put
'
,
body
:
JSON
.
stringify
({
memory
:
memory
}),
headers
:
{
'
Content-Type
'
:
'
application/json
'
},
})
// let json = await res.json()
// console.log(json)
}
else
{
logger
.
warn
(
'
Repeat deployment, updating metadata
'
)
try
{
await
fetch
(
metadataDB
+
functionHash
,
{
method
:
'
put
'
,
body
:
JSON
.
stringify
({
memory
:
memory
,
_rev
:
json
.
_rev
}),
headers
:
{
'
Content-Type
'
:
'
application/json
'
},
})
// let json = await res.json()
// console.log(json)
}
catch
(
err
)
{
console
.
log
(
err
);
}
}
if
(
runtime
===
"
container
"
)
{
try
{
await
deployContainer
(
file_path
,
functionHash
)
console
.
log
(
"
called
"
);
return
Promise
.
resolve
()
}
catch
(
err
)
{
return
Promise
.
reject
(
err
)
}
}
else
{
return
Promise
.
resolve
()
}
}
catch
(
err
)
{
logger
.
error
(
err
)
return
Promise
.
reject
(
err
)
}
}
function
moveFile
(
file
,
file_path
,
functionHash
)
{
return
new
Promise
((
resolve
,
reject
)
=>
{
file
.
mv
(
file_path
+
functionHash
,
function
(
err
)
{
if
(
err
)
reject
(
err
)
resolve
()
})
})
}
async
function
deployContainer
(
path
,
imageName
)
{
return
new
Promise
((
resolve
,
reject
)
=>
{
let
buildStart
=
Date
.
now
()
fs
.
writeFile
(
'
./repository/Dockerfile
'
+
imageName
,
`FROM node:latest
WORKDIR /app
COPY ./worker_env/package.json /app
ADD ./worker_env/node_modules /app/node_modules
COPY
${
imageName
}
.js /app
ENTRYPOINT ["node", "
${
imageName
}
.js"]`
,
function
(
err
)
{
if
(
err
)
{
logger
.
error
(
"
failed
"
,
err
);
reject
(
err
);
}
else
{
logger
.
info
(
'
Dockerfile created
'
);
const
process
=
spawn
(
'
docker
'
,
[
"
build
"
,
"
-t
"
,
registry_url
+
imageName
,
path
,
"
-f
"
,
path
+
`Dockerfile
${
imageName
}
`
]);
process
.
stdout
.
on
(
'
data
'
,
(
data
)
=>
{
logger
.
info
(
`stdout:
${
data
}
`
);
});
process
.
stderr
.
on
(
'
data
'
,
(
data
)
=>
{
logger
.
error
(
`stderr:
${
data
}
`
);
});
process
.
on
(
'
close
'
,
(
code
)
=>
{
logger
.
warn
(
`child process exited with code
${
code
}
`
);
let
timeDifference
=
Math
.
ceil
((
Date
.
now
()
-
buildStart
))
logger
.
info
(
"
image build time taken:
"
,
timeDifference
);
const
process_push
=
spawn
(
'
docker
'
,
[
"
push
"
,
registry_url
+
imageName
]);
process_push
.
stdout
.
on
(
'
data
'
,
(
data
)
=>
{
console
.
log
(
`stdout:
${
data
}
`
);
});
process_push
.
stderr
.
on
(
'
data
'
,
(
data
)
=>
{
logger
.
error
(
`stderr:
${
data
}
`
);
});
process_push
.
on
(
'
close
'
,
(
code
)
=>
{
logger
.
info
(
"
image pushed to repository
"
);
resolve
();
})
});
}
});
})
}
function
createDirectory
(
path
)
{
return
new
Promise
((
resolve
,
reject
)
=>
{
if
(
!
fs
.
existsSync
(
path
))
{
fs
.
mkdir
(
path
,
err
=>
{
if
(
err
)
reject
();
resolve
();
})
}
else
{
resolve
();
}
})
}
router
.
post
(
'
/execute
'
,
(
req
,
res
)
=>
{
})
async
function
orchestrator
(
payload
,
res
)
{
}
module
.
exports
=
router
;
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