Michael Hart
Michael Hart
Any reason you're using the `--ssl true` flag? The endpoint you've passed in uses `http:`, not `https:`, so I doubt that will work – just remove that flag
@reggi yeah, I link to the configuration documentation on the README (the "after configuring the SDK" bit) You can also use any other method mentioned in the sdk config documentation...
Just confirmed – same issue, almost exact same stacktrace – line-delimited JSON file, 48k lines, Mac OS X 10.12.2, PostgreSQL 9.6.2 Got to 39.81 MB / 135.65 MB before it...
Let me know if there are any blockers to using dynalite instead (which should be easier to launch/install cause it's just npm/JS). I haven't really put much love into it...
Looks good to me! I'd love to know a little more about these "Resource In Use" errors though. Were they LevelDB errors, or DynamoDB-like errors from dynalite?
Yeah, I (sometimes) test by setting that: https://github.com/mhart/dynalite/blob/master/test/helpers.js#L49 Running `DYNALITE_PATH=./dynalite npm test` works fine though. Might be that I just don't have the right sort of tests to reproduce? Seems...
No, none at all unless you want persistence – for tests I'd definitely recommend in-memory
Just wanted to make sure it wasn't a `ResourceInUseException` you were running into. Cause that's legit
So that's a legit DynamoDB error that happens if you're trying to delete a table that's still being created or something similar to that. You should wait for the tables...
Yeah, I use a `setTimeout` – so there's still a window before the next process tick. I could special case a value of zero I guess. I just wanted ppl...