cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

jothi_raje
Node
since ‎01-29-2020
‎06-01-2022

User Statistics

  • 16 Posts
  • 0 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

Hi, I have installed Neo4j community version 3.5.17 in Azure Kubernetes. Kubernetes resource has 7GB RAM, and 3 nodes assigned. So it says total available memory as 21GB. But when i install neo4j using helm commands, i see neo4j service taking up 7GB...
Neo4j community 3.5.17 has been installed as service in Azure Kubernetes using below commands. helm repo add equinor-charts https://equinor.github.io/helm-charts/charts/ helm repo update helm upgrade --install neo4j-community equinor-charts/neo4j-com...
Hi, I have installed Neo4j on Azure Kubernetes. In the final step, below commands are run to create user and password. export NEO4J_PASSWORD=$(kubectl get secrets graph-neo4j-secrets -o yaml | grep password | sed 's/.*: //' | base64 -D) cypher-shell ...
I am automating data load from Azure storage to Neo4j I have a csv file in Datalake storage, which I am reading using pandas in Azure Databricks. Below is the code I am using. Nodes and relationships should be created only when row.Name is not null, ...
I am having a file in Azure, for which I have to generate nodes and relationships in Neo4j. Is there a way to call Neo4j in Databricks so nodes can be generated based on file availability. Saw below type of codes, but when executed - getting error as...