This should give you a copy of the latest master snapshot build: https://ci-builds.apache.org/job/AsterixDB/job/asterixdb-snapshot-integration/lastSuccessfulBuild/artifact/asterixdb/asterix-server/target/asterix-server-0.9.8-SNAPSHOT-binary-assembly.zip . Its easiest to just reload things unless you have a ton of data.
On Thu, Apr 28, 2022 at 5:16 PM Glenn Justo Galvizo <[email protected]> wrote: > No issue for me w/ compression in the latest master (I've only had issues > in the past with building AsterixDB on M1, but that doesn't seem to be the > case here). > > On Apr 28, 2022, at 15:50, Wail Alkowaileet <[email protected]> wrote: > > Hi Nicholas, > > What version of AsterixDB are you using? I don't have an M1 Mac - the > issue seems to be the compression. > CCing @Glenn Justo Galvizo <[email protected]>. Did you have an issue with > compression in M1 with the latest master? > > > On Thu, Apr 28, 2022 at 3:42 PM Nicholas Santini <[email protected]> wrote: > >> Sure, the logs are attached. >> >> On Thu, Apr 28, 2022 at 3:28 PM Ian Maxon <[email protected]> wrote: >> >>> Can you share the NC logs? That should tell us why one or more of them >>> are not joining the CC. >>> >>> On Thu, Apr 28, 2022 at 2:37 PM Nicholas Santini <[email protected]> >>> wrote: >>> >>>> Hi all, >>>> >>>> I'm new to mailing lists, but I am trying to submit an issue that I >>>> need help with. >>>> I'm trying to set up a sample cluster with asterixDB on my M1 mac. I >>>> have my environment up and running and I am able to successfully make SQL >>>> queries with the following code: >>>> ``` >>>> drop dataverse csv if exists; >>>> create dataverse csv; >>>> use csv; >>>> >>>> create type csv_type as { >>>> lat: int32, >>>> long: int32 >>>> }; >>>> >>>> create dataset csv_set (csv_type) >>>> primary key lat; >>>> >>>> ``` >>>> However, when I try to load the dataset with a CSV file it seems to >>>> brick my sample cluster and throws the error: Error Code: 1 "HYR0010: Node >>>> asterix_nc2 does not exist". The code which causes this is below. >>>> >>>> ``` >>>> use csv; >>>> >>>> load dataset csv_set using localfs >>>> (("path"="127.0.0.1 >>>> <https://urldefense.com/v3/__http://127.0.0.1__;!!CzAuKJ42GuquVTTmVmPViYEvSg!KY80TU-1VSpNm8cL-Eh1QmN1c4ZJaDcbm-3GXywPxC_dhC7bApZUjA4hJ2D-L9MkAYkT8uDRo6h6Qosl$> >>>> :///Users/nicholassantini/Downloads/test.csv"), >>>> ("format"="delimited-text")); >>>> ``` >>>> >>>> Thus far I have tried both java's newest release of version 18 and >>>> 17.0.3 as well as a variety of ports for the queries. I'm not sure what >>>> else to try. Some logs that I think are relevant say that it is failing to >>>> connect to the node. Not sure if that's an issue with the port or the node >>>> itself. Here is a snippet of those logs. >>>> >>>> <image.png> >>>> >>>> Also in case it matters, my CSV is a simple 2 column 2 row file with >>>> all single-digit integer values. >>>> >>>> I appreciate any and all help. >>>> Best, >>>> Nicholas Santini >>>> >>> > > -- > > *Regards,* > Wail Alkowaileet > > >
