thinker0 edited a comment on issue #3502: can not submit to aurora, it seems 
halt up.
URL: 
https://github.com/apache/incubator-heron/issues/3502#issuecomment-605466291
 
 
   @dttlgotv 
   See Mesos or Aurora stderr, stdout log.
   
   ```
   hdfs dfs -get /heron/dist/heron-core.tar.gz heron-core.tar.gz && tar zxf 
heron-core.tar.gz
   ```
   work ?
   
   Please refer to this in my aurora file.
   ```
   import textwrap
   
   heron_core_release_uri = '{{CORE_PACKAGE_URI}}'
   heron_topology_jar_uri = '{{TOPOLOGY_PACKAGE_URI}}'
   core_release_file = "heron-centos.tar.gz"
   topology_package_file = "topology.tar.gz"
   
   # --- processes ---
   fetch_heron_system = Process(
       name='fetch_heron_system',
       cmdline=textwrap.dedent('''
           set -x
           curl %s -o %s && tar zxf %s && {
               rm -f heron-centos.tar.gz
           } && tar xvfz dist/heron-core.tar.gz && {
               rm -f dist/heron-core.tar.gz
           }
       ''') % (heron_core_release_uri, core_release_file, core_release_file)
   )
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to