Ben Lackey

Results 17 issues of Ben Lackey

It has a note: "# Primary loop. This could take 30 minutes to an hour." That's not going to work in the labs. Need to come up with an alternative...

This has a __MAC_OSX directory in it. Likely there's no repeatable script to generate it. Need to look into this...

Use transactions in load ``` :auto LOAD CSV WITH HEADERS FROM 'https://storage.googleapis.com/neo4j-datasets/form13/form13-v2.csv' AS row CALL { MATCH (m:Manager {managerName:row.managerName}) MATCH (c:Company {cusip:row.cusip}) MERGE (m)-[r:OWNS {reportCalendarOrQuarter:date(row.reportCalendarOrQuarter)}]->(c) SET r.value = toFloat(row.value), r.shares...

We should probably shrink our dataset. There's no reason we need to load this much data for the lab.

We now have a bunch of notebooks. They're all authing to the same Neo4j database. When we had two it wasn't too painful to enter creds. Now that's pretty awful....

Lab 7 is using a text name rather than the CUSIP as a key.

Data will go in S3 instead.