Skip to content
Snippets Groups Projects
Commit 366cac22 authored by Sven-Ove Hänsel's avatar Sven-Ove Hänsel
Browse files

update readme and dockerfile

parent 1a9b51ca
No related branches found
No related tags found
No related merge requests found
...@@ -16,7 +16,8 @@ RUN pip install neo4j ...@@ -16,7 +16,8 @@ RUN pip install neo4j
# Copy the Python script into the container # Copy the Python script into the container
#COPY sub_mem.py /app/ #COPY sub_mem.py /app/
COPY sub_mem_whole_batch_subgraph_oriented.py /app/ # COPY sub_mem_whole_batch_subgraph_oriented.py /app/
COPY ./kind_oriented/sub_mem_whole_batch_kind_oriented_two_label_internal_collision_handle.py /app/
# Set environment variable 'time_limit' # Set environment variable 'time_limit'
ENV abort_time_limit=999999 ENV abort_time_limit=999999
...@@ -26,4 +27,4 @@ ENV mos_port=1883 ...@@ -26,4 +27,4 @@ ENV mos_port=1883
ENV create_indices=False ENV create_indices=False
# Run the Python script # Run the Python script
CMD ["python", "sub_mem_whole_batch_subgraph_oriented.py"] CMD ["python", "sub_mem_whole_batch_kind_oriented_two_label_internal_collision_handle.py"]
...@@ -6,6 +6,7 @@ Unwind = UNWIND ...@@ -6,6 +6,7 @@ Unwind = UNWIND
no label = one label for all nodes and the original label as a property of the node. no label = one label for all nodes and the original label as a property of the node.
sub_mem_original = subscriber from the original experiment, added comment at line 15 and 32 sub_mem_original = subscriber from the original experiment, added comment at line 15 and 32
These comments describes what was changed for all new subscribers These comments describes what was changed for all new subscribers
Note: in general the changes are not explicitly marked, but it should be possible to identify all Note: in general the changes are not explicitly marked, but it should be possible to identify all
changed locations by a diff program or ide function. changed locations by a diff program or ide function.
...@@ -15,11 +16,10 @@ I encountered Pylint towards the end of this period. ...@@ -15,11 +16,10 @@ I encountered Pylint towards the end of this period.
The most severe messages generated by Pylint were addressed. The most severe messages generated by Pylint were addressed.
Others like the layout recommendations have not been implemented due to lack of time. Others like the layout recommendations have not been implemented due to lack of time.
Procedure_for_module_in_memgraph = is the procedure Procedure_for_module_in_memgraph = is the procedure
The newest and best version at the moment is 'sub_mem_whole_batch_kind_oriented_two_label_internal_collision_handle'. The newest and best version at the moment is 'sub_mem_whole_batch_kind_oriented_two_label_internal_collision_handle'.
Using 'OPTIONAL MATCH' throws an error at the edge, which tries to create an edge on a null node. Using 'OPTIONAL MATCH' throws an error at the edge, which tries to create an edge on a null node.
This null node wasn't found by 'OPTIONAL MATCH' a normal 'MATCH' would stop the query, but it woudln't throw an error. This null node wasn't found by 'OPTIONAL MATCH' a normal 'MATCH' would stop the query, but it woudln't throw an error.
So, this Version is good for identifying cases that need to be handled. So, this Version is good for identifying cases that need to be handled.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment