HazyResearch / deepdive

DeepDive
deepdive.stanford.edu
1.96k stars 539 forks source link

Grounding fails now.. #70

Closed zifeishan closed 10 years ago

zifeishan commented 10 years ago
02:29:06 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  Writing grounding queries to file="/tmp/grounding1059931729374242987.sql"
02:29:06 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  Using Greenplum = true
02:29:06 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  Executing grounding query...
02:29:06 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  Executing: "/tmp/assignId6239763464673515879.sh"
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  psql: warning: extra command-line argument "POP" ignored
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  psql: warning: extra command-line argument "SEGMENT" ignored
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  psql: warning: extra command-line argument "%d % sid));
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO          SD.pop('__count_1')
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO        return startid+b-a
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO      else:
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO        plpy.info(" ignored
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  psql: warning: extra command-line argument "SEGMENT" ignored
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  psql: warning: extra command-line argument "%d % sid + " ignored
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  psql: warning: extra command-line argument " + sids.__repr__());
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO        for i in range(0, len(sids)):
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO          if sids[i] == sid:
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO            plpy.info((SEGMENT" ignored
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  psql: warning: extra command-line argument "%d % sid) + (" ignored
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  psql: warning: extra command-line argument "ID" ignored
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  psql: warning: extra command-line argument "ENDS" ignored
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  psql: warning: extra command-line argument "AT" ignored
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  psql: warning: extra command-line argument "%i % base_ids[i]));
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO            SD['__count_1'] = base_ids[i] - 1
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO            SD['__count_2'] = base_ids_noagg[i] - 1
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO        a = SD['__count_2']
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO        b = SD['__count_1']
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO        SD['__count_2'] = SD['__count_2'] - 1
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO        if SD['__count_2'] < 0:
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO          SD.pop('__count_1')
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO        return startid+b-a
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO      $$ LANGUAGE plpythonu;
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO      CREATE OR REPLACE FUNCTION fast_seqassign(tname character varying, startid bigint) RETURNS TEXT AS
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO      $$
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO      BEGIN
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO        EXECUTE 'drop table if exists tmp_gpsid_count cascade;';
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO        EXECUTE 'drop table if exists tmp_gpsid_count_noagg cascade;';
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO        EXECUTE 'create table tmp_gpsid_count as select gp_segment_id as sid, count(clear_count_1(gp_segment_id)) as base_id from ' || quote_ident(tname) || ' group by gp_segment_id order by sid distributed by (sid);';
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO        EXECUTE 'create table tmp_gpsid_count_noagg as select * from tmp_gpsid_count distributed by (sid);';
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO        EXECUTE 'update tmp_gpsid_count as t set base_id = (SELECT SUM(base_id) FROM tmp_gpsid_count as t2 WHERE t2.sid <= t.sid);';
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO        RAISE NOTICE 'EXECUTING _fast_seqassign()...';
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO        EXECUTE 'select * from _fast_seqassign(''' || quote_ident(tname) || ''', ' || startid || ');';
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO        RETURN '';
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO      END;
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO      $$ LANGUAGE 'plpgsql';
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO      CREATE OR REPLACE FUNCTION _fast_seqassign(tname character varying, startid bigint)
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO      RETURNS TEXT AS
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO      $$
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO      DECLARE
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO        sids int[] :=  ARRAY(SELECT sid FROM tmp_gpsid_count ORDER BY sid);
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO        base_ids bigint[] :=  ARRAY(SELECT base_id FROM tmp_gpsid_count ORDER BY sid);
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO        base_ids_noagg bigint[] :=  ARRAY(SELECT base_id FROM tmp_gpsid_count_noagg ORDER BY sid);
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO        tsids text;
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO        tbase_ids text;
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO        tbase_ids_noagg text;
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO      BEGIN
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO        SELECT INTO tsids array_to_string(sids, ',');
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO        SELECT INTO tbase_ids array_to_string(base_ids, ',');
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO        SELECT INTO tbase_ids_noagg array_to_string(base_ids_noagg, ',');
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO        EXECUTE 'update ' || tname || ' set id = updateid(' || startid || ', gp_segment_id, ARRAY[' || tsids || '], ARRAY[' || tbase_ids || '], ARRAY[' || tbase_ids_noagg || ']);';
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO        RETURN '';
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO      END;
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO      $$
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO      LANGUAGE 'plpgsql';
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO      " ignored
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  ERROR:  unterminated dollar-quoted string at or near "$$
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  LINE 17:     $$
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO               ^
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  DETAIL:
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO      if '__count_1' in SD:
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO        a = SD['__count_2']
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO        b = SD['__count_1']
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO        SD['__count_2'] = SD['__count_2'] - 1
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO        if SD['__count_2'] < 0:
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO          plpy.info((~~~~~~~~"
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  ERROR:  function fast_seqassign(unknown, integer) does not exist
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  LINE 1:  SELECT fast_seqassign('has_spouse', 0);
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO                  ^
02:29:07 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  HINT:  No function matches the given name and argument types. You may need to add explicit type casts.
02:29:12 [taskManager] INFO  Completed task_id=inference_grounding with Success(OK)
02:29:12 [profiler] DEBUG ending report_id=inference_grounding
02:29:12 [taskManager] INFO  1/4 tasks eligible.
02:29:12 [taskManager] INFO  Tasks not_eligible: Set(shutdown, report, calibration)
02:29:12 [taskManager] DEBUG Sending task_id=inference to Actor[akka://deepdive/user/inferenceManager#-1296289787]
02:29:12 [profiler] DEBUG starting report_id=inference
02:29:12 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  Dumping factor graph...
02:29:12 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  Dumping variables...
02:29:12 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  Dumping weights...
02:29:13 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  Dumping factors...
02:29:13 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  Dumping IsTrueFactorFunction...
02:29:14 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  Dumping ImplyFactorFunction...
02:29:14 [sampler] INFO  starting
02:29:14 [sampler] INFO  util/sampler-dw-linux gibbs
02:29:14 [sampler] INFO  Executing: util/sampler-dw-linux gibbs -w /lfs/rambo/0/zifei/deepdive/out/2014-05-05T022849/graph.weights -v /lfs/rambo/0/zifei/deepdive/out/2014-05-05T022849/graph.variables -f /lfs/rambo/0/zifei/deepdive/out/2014-05-05T022849/graph.factors -e /lfs/rambo/0/zifei/deepdive/out/2014-05-05T022849/graph.edges -m /lfs/rambo/0/zifei/deepdive/out/2014-05-05T022849/graph.meta.csv -o /lfs/rambo/0/zifei/deepdive/out/2014-05-05T022849 -l 1000 -s 1 -i 1000 --alpha 0.1 --diminish 0.99
02:29:14 [sampler] INFO
02:29:14 [sampler] INFO  #################MACHINE CONFIG#################
02:29:14 [sampler] INFO  # # NUMA Node        : 4
02:29:14 [sampler] INFO  # # Thread/NUMA Node : 16
02:29:14 [sampler] INFO  ################################################
02:29:14 [sampler] INFO
02:29:14 [sampler] INFO  #################GIBBS SAMPLING#################
02:29:14 [sampler] INFO  # fg_file            : /lfs/rambo/0/zifei/deepdive/out/2014-05-05T022849/graph.meta.csv
02:29:14 [sampler] INFO  # edge_file          : /lfs/rambo/0/zifei/deepdive/out/2014-05-05T022849/graph.edges
02:29:14 [sampler] INFO  # weight_file        : /lfs/rambo/0/zifei/deepdive/out/2014-05-05T022849/graph.weights
02:29:14 [sampler] INFO  # variable_file      : /lfs/rambo/0/zifei/deepdive/out/2014-05-05T022849/graph.variables
02:29:14 [sampler] INFO  # factor_file        : /lfs/rambo/0/zifei/deepdive/out/2014-05-05T022849/graph.factors
02:29:14 [sampler] INFO  # output_folder      : /lfs/rambo/0/zifei/deepdive/out/2014-05-05T022849
02:29:14 [sampler] INFO  # n_learning_epoch   : 1000
02:29:14 [sampler] INFO  # n_samples/l. epoch : 1
02:29:14 [sampler] INFO  # n_inference_epoch  : 1000
02:29:14 [sampler] INFO  # stepsize           : 0.1
02:29:14 [sampler] INFO  # decay              : 0.99
02:29:14 [sampler] INFO  ################################################
02:29:14 [sampler] INFO  # IGNORE -s (n_samples/l. epoch). ALWAYS -s 1. #
02:29:14 [sampler] INFO  # IGNORE -t (threads). ALWAYS USE ALL THREADS. #
02:29:14 [sampler] INFO  ################################################
02:29:14 [sampler] INFO  # nvar               : 75454
02:29:14 [sampler] INFO  # nfac               : 227278
02:29:14 [sampler] INFO  # nweight            : 30467
02:29:14 [sampler] INFO  # nedge              : 302732
02:29:14 [sampler] INFO  ################################################
02:29:14 [sampler] INFO  LOADED VARIABLES: #75454
02:29:14 [sampler] INFO           N_QUERY: #71579
02:29:14 [sampler] INFO           N_EVID : #3875
02:29:14 [sampler] INFO  LOADED FACTORS: #227278
02:29:14 [sampler] INFO  LOADED WEIGHTS: #30467
02:29:14 [sampler] INFO  LOADED EDGES: #302732
sampler-dw-linux: src/dstruct/factor_graph/factor_graph.cpp:204: void dd::FactorGraph::safety_check(): Assertion `this->variables[i].id == i' failed.
02:29:14 [inferenceManager] ERROR sampling failed (see error log for more details)
java.lang.RuntimeException: sampling failed (see error log for more details)
    at org.deepdive.inference.Sampler$$anonfun$receive$1.applyOrElse(Sampler.scala:36) ~[classes/:na]
    at akka.actor.Actor$class.aroundReceive(Actor.scala:467) ~[akka-actor_2.10-2.3-M2.jar:2.3-M2]
    at org.deepdive.inference.Sampler.aroundReceive(Sampler.scala:17) ~[classes/:na]
    at akka.actor.ActorCell.receiveMessage(ActorCell.scala:491) [akka-actor_2.10-2.3-M2.jar:2.3-M2]
    at akka.actor.ActorCell.invoke(ActorCell.scala:462) [akka-actor_2.10-2.3-M2.jar:2.3-M2]
    at akka.dispatch.Mailbox.processMailbox(Mailbox.scala:237) [akka-actor_2.10-2.3-M2.jar:2.3-M2]
    at akka.dispatch.Mailbox.run(Mailbox.scala:219) [akka-actor_2.10-2.3-M2.jar:2.3-M2]
    at akka.dispatch.ForkJoinExecutorConfigurator$AkkaForkJoinTask.exec(AbstractDispatcher.scala:385) [akka-actor_2.10-2.3-M2.jar:2.3-M2]
    at scala.concurrent.forkjoin.ForkJoinTask.doExec(ForkJoinTask.java:260) [scala-library.jar:na]
    at scala.concurrent.forkjoin.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339) [scala-library.jar:na]
    at scala.concurrent.forkjoin.ForkJoinPool.runWorker(ForkJoinPool.java:1979) [scala-library.jar:na]
    at scala.concurrent.forkjoin.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107) [scala-library.jar:na]
02:29:14 [sampler] INFO  Message [akka.actor.PoisonPill$] from Actor[akka://deepdive/user/inferenceManager#-1296289787] to Actor[akka://deepdive/user/inferenceManager/sampler#-1939513095] was not delivered. [1] dead letters encountered. This logging can be turned off or adjusted with configuration settings 'akka.log-dead-letters' and 'akka.log-dead-letters-during-shutdown'.
02:29:14 [inferenceManager] INFO  Starting
02:29:14 [factorGraphBuilder] INFO  Starting
02:29:21 [taskManager] INFO  Memory usage: 995/2476MB (max: 3641MB)
feiranwang commented 10 years ago

Will look into it.

feiranwang commented 10 years ago

I can run on madmax1 09:41:50 [profiler] INFO ext_people SUCCESS [38500 ms] 09:41:50 [profiler] INFO ext_has_spouse_candidates SUCCESS [13672 ms] 09:41:50 [profiler] INFO ext_has_spouse_features SUCCESS [68510 ms] 09:41:50 [profiler] INFO inference_grounding SUCCESS [5617 ms] 09:41:50 [profiler] INFO inference SUCCESS [10198 ms] 09:41:50 [profiler] INFO calibration plot written to /lfs/madmax/0/feiran/deepdive/out/2014-05-05T093932/calibration/has_spouse.is_true.png [0 ms] 09:41:50 [profiler] INFO calibration SUCCESS [926 ms]

seems to me it's assigning id problem, i'll test again

feiranwang commented 10 years ago

Test using rokcy's database, it runs...

10:05:24 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  Writing grounding queries to file="/tmp/grounding3399495869192337498.sql" 
10:05:24 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  Using Greenplum = true
10:05:24 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  Executing grounding query...
10:05:24 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  Executing: "/tmp/assignId5585274005363230742.sh" 
10:05:24 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  NOTICE:  drop cascades to function _fast_seqassign(character varying,bigint)
10:05:24 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  NOTICE:  drop cascades to function fast_seqassign(character varying,bigint)
10:05:24 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  NOTICE:  drop cascades to function updateid(bigint,integer,integer[],bigint[],bigint[])
10:05:24 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  NOTICE:  drop cascades to function clear_count_1(integer)
10:05:24 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  CREATE FUNCTION
10:05:24 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  NOTICE:  table "tmp_gpsid_count" does not exist, skipping
10:05:24 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  CONTEXT:  SQL statement "drop table if exists tmp_gpsid_count cascade;"
10:05:24 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  PL/pgSQL function "fast_seqassign" line 2 at execute statement
10:05:24 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  NOTICE:  table "tmp_gpsid_count_noagg" does not exist, skipping
10:05:24 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  CONTEXT:  SQL statement "drop table if exists tmp_gpsid_count_noagg cascade;"
10:05:24 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  PL/pgSQL function "fast_seqassign" line 3 at execute statement
10:05:25 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  NOTICE:  EXECUTING _fast_seqassign()...
10:05:26 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO   fast_seqassign 
10:05:26 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  ----------------
10:05:26 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO   
10:05:26 [PostgresInferenceDataStoreComponent$PostgresInferenceDataStore(akka://deepdive)] INFO  (1 row)
feiranwang commented 10 years ago

will push again

feiranwang commented 10 years ago

Fixed in d47f817a6e9f352528a2f70216ca22603c4a4498

zifeishan commented 10 years ago

Works now!