Getting “ org.springframework.data.mongodb.UncategorizedMongoDbException: 'can't convert from BSON type string to Date' ” exceptionexception: can't convert from BSON type EOO to DateGroup by Date mongoDBMongoError: can't convert from BSON type missing to DateMongo DB - Only Let Documents that match a certain condition get analyzed by the next stage of the aggregation pipelineNested mongo $add and $multiply resulting in can't convert from BSON type NULL to Date errorTimestamp operations in MongoDB when some timestamps are nullMongoDB X509 cert connectionHow do I discard a record that throws an error?How to write $substr($substr(a,1,8),1,6) with java in mongodb
Time war story - soldier name lengthens as he travels further from the battle front
How to split the polynomial .
How does the Gameboy's memory bank switching work?
Making an example from 'Clean Code' more functional
Is there an English word to describe when a sound "protrudes"?
Nilpotent elements of Lie algebra and unipotent groups
What is the minimum wait before I may I re-enter the USA after a 90 day visit on the Visa B-2 Program?
1025th term of the given sequence.
What does a Nintendo Game Boy do when turned on without a game cartridge inserted?
Found old paper shares of Motorola Inc that has since been broken up
Do I have to mention my main characters age?
Why does Plot only sometimes use different colors for each curve
Does a hash function have a Upper bound on input length?
Could a US citizen born through "birth tourism" become President?
What is this light passenger prop airplane which crash landed in East Kalimantan, Borneo in 1983?
Manager is asking me to eat breakfast from now on
Why does airflow separate from the wing during stall?
Raspbian gcc does not know '.intel_syntax'?
Can two waves interfere head on?
Would using carbon dioxide as fuel work to reduce the greenhouse effect?
Can anyone help me to adjust the following asterisks?
What would be the effects of (relatively) widespread precognition on the stock market?
Three phase systems - are there any single phase devices that are connected between two phases instead of between one phase and neutral?
Satellite in orbit in front of and behind the Moon
Getting “ org.springframework.data.mongodb.UncategorizedMongoDbException: 'can't convert from BSON type string to Date' ” exception
exception: can't convert from BSON type EOO to DateGroup by Date mongoDBMongoError: can't convert from BSON type missing to DateMongo DB - Only Let Documents that match a certain condition get analyzed by the next stage of the aggregation pipelineNested mongo $add and $multiply resulting in can't convert from BSON type NULL to Date errorTimestamp operations in MongoDB when some timestamps are nullMongoDB X509 cert connectionHow do I discard a record that throws an error?How to write $substr($substr(a,1,8),1,6) with java in mongodb
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
Below spring data mongo DB aggregation query meant to get available teachers based on who doesn't have 20 hr / 15 hr workload for a week.
public List<Calendar> findAvailableTeachersV2(List<java.util.Date> leanerPlannedSlotList, int hoursPerWeek)
log.info("TeachersAvailabilityQuery.getTeachers()");
Aggregation aggregation = Aggregation.newAggregation(
match(where("schedule.startDate").in(leanerPlannedSlotList)
.andOperator(where("schedule.status").is("AVAILABLE"))),
Aggregation.unwind("$schedule"),
project("_id", "timeZone", "schedule").and("schedule.startDate").as("startDate")
.and(DateOperators.IsoWeek.isoWeek("schedule.startDate")).as("week").and("schedule.status")
.as("status").and(LiteralOperators.Literal.asLiteral(0.5)).as("duration"),
// TODO
group("_id", "week", "status")
.addToSet(ConditionalOperators.when(Criteria.where("status").is("AVAILABLE"))
.thenValueOf("startDate").otherwise(""))
.as("startDate").push("duration").as("duration").count().as("bookedDuration"),
// TODO
// Need to check intersection
project("_id").and(SetOperators.SetIntersection.arrayAsSet("startDate").intersects("startDate"))
.as("availableSlots")
.and(ConditionalOperators.when(Criteria.where("schedule.status").is("BOOKED"))
.thenValueOf("bookedDuration").otherwise(0))
.as("bookedDuration"),
Aggregation.unwind("availableSlots", true),
// TODO
// Need to check the sum of bookedDuration
group("_id").addToSet("availableSlots").as("availableSlots").sum("bookedDuration")
.as("bookedDuration"),
// TODO
// Need to check size condition for: availableSlots
match(where("bookedDuration").gt(hoursPerWeek).andOperator(where("availableSlots").size(0).gt(0))),
Aggregation.unwind("availableSlots"), group("_id").addToSet("availableSlots").as("availableSlots"));
AggregationResults<Calendar> results = mongoOperations.aggregate(aggregation, COLLECTION_NAME, Calendar.class);
List<Calendar> calendarList = results.getMappedResults();
return calendarList;
Please refer the below Exception stack trace:
org.springframework.data.mongodb.UncategorizedMongoDbException:Command failed with error 16006: 'can't convert from BSON type string to Date' on server cluster0-shard-00-00-uwrbw.mongodb.net:27017. The full response is "operationTime" : "$timestamp" : "t" : 1553603169, "i" : 5 , "ok" : 0.0, "errmsg" : "can't convert from BSON type string to Date", "code" : 16006, "codeName" : "Location16006", "$clusterTime" : "clusterTime" : "$timestamp" : "t" : 1553603169, "i" : 5 , "signature" : "hash" : "$binary" : "gkjiKThKxdvt+K/4stNTlMjM9rE=", "$type" : "00" , "keyId" : "$numberLong" : "6616309008233922561" ; nested exception is com.mongodb.MongoCommandException: Command failed with error 16006: 'can't convert from BSON type string to Date' on server cluster0-shard-00-00-uwrbw.mongodb.net:27017. The full response is "operationTime" : "$timestamp" : "t" : 1553603169, "i" : 5 , "ok" : 0.0, "errmsg" : "can't convert from BSON type string to Date", "code" : 16006, "codeName" : "Location16006", "$clusterTime" : "clusterTime" : "$timestamp" : "t" : 1553603169, "i" : 5 , "signature" : "hash" : "$binary" : "gkjiKThKxdvt+K/4stNTlMjM9rE=", "$type" : "00" , "keyId" : "$numberLong" : "6616309008233922561"
at org.springframework.data.mongodb.core.MongoExceptionTranslator.translateExceptionIfPossible(MongoExceptionTranslator.java:131)
at org.springframework.data.mongodb.core.MongoTemplate.potentiallyConvertRuntimeException(MongoTemplate.java:2589)
at org.springframework.data.mongodb.core.MongoTemplate.execute(MongoTemplate.java:499)
at org.springframework.data.mongodb.core.MongoTemplate.executeCommand(MongoTemplate.java:437)
at org.springframework.data.mongodb.core.MongoTemplate$BatchAggregationLoader.aggregateBatched(MongoTemplate.java:3137)
at org.springframework.data.mongodb.core.MongoTemplate$BatchAggregationLoader.aggregate(MongoTemplate.java:3113)
at org.springframework.data.mongodb.core.MongoTemplate.aggregate(MongoTemplate.java:1937)
at org.springframework.data.mongodb.core.MongoTemplate.aggregate(MongoTemplate.java:1841)
mongodb aggregation-framework spring-data-mongodb
add a comment |
Below spring data mongo DB aggregation query meant to get available teachers based on who doesn't have 20 hr / 15 hr workload for a week.
public List<Calendar> findAvailableTeachersV2(List<java.util.Date> leanerPlannedSlotList, int hoursPerWeek)
log.info("TeachersAvailabilityQuery.getTeachers()");
Aggregation aggregation = Aggregation.newAggregation(
match(where("schedule.startDate").in(leanerPlannedSlotList)
.andOperator(where("schedule.status").is("AVAILABLE"))),
Aggregation.unwind("$schedule"),
project("_id", "timeZone", "schedule").and("schedule.startDate").as("startDate")
.and(DateOperators.IsoWeek.isoWeek("schedule.startDate")).as("week").and("schedule.status")
.as("status").and(LiteralOperators.Literal.asLiteral(0.5)).as("duration"),
// TODO
group("_id", "week", "status")
.addToSet(ConditionalOperators.when(Criteria.where("status").is("AVAILABLE"))
.thenValueOf("startDate").otherwise(""))
.as("startDate").push("duration").as("duration").count().as("bookedDuration"),
// TODO
// Need to check intersection
project("_id").and(SetOperators.SetIntersection.arrayAsSet("startDate").intersects("startDate"))
.as("availableSlots")
.and(ConditionalOperators.when(Criteria.where("schedule.status").is("BOOKED"))
.thenValueOf("bookedDuration").otherwise(0))
.as("bookedDuration"),
Aggregation.unwind("availableSlots", true),
// TODO
// Need to check the sum of bookedDuration
group("_id").addToSet("availableSlots").as("availableSlots").sum("bookedDuration")
.as("bookedDuration"),
// TODO
// Need to check size condition for: availableSlots
match(where("bookedDuration").gt(hoursPerWeek).andOperator(where("availableSlots").size(0).gt(0))),
Aggregation.unwind("availableSlots"), group("_id").addToSet("availableSlots").as("availableSlots"));
AggregationResults<Calendar> results = mongoOperations.aggregate(aggregation, COLLECTION_NAME, Calendar.class);
List<Calendar> calendarList = results.getMappedResults();
return calendarList;
Please refer the below Exception stack trace:
org.springframework.data.mongodb.UncategorizedMongoDbException:Command failed with error 16006: 'can't convert from BSON type string to Date' on server cluster0-shard-00-00-uwrbw.mongodb.net:27017. The full response is "operationTime" : "$timestamp" : "t" : 1553603169, "i" : 5 , "ok" : 0.0, "errmsg" : "can't convert from BSON type string to Date", "code" : 16006, "codeName" : "Location16006", "$clusterTime" : "clusterTime" : "$timestamp" : "t" : 1553603169, "i" : 5 , "signature" : "hash" : "$binary" : "gkjiKThKxdvt+K/4stNTlMjM9rE=", "$type" : "00" , "keyId" : "$numberLong" : "6616309008233922561" ; nested exception is com.mongodb.MongoCommandException: Command failed with error 16006: 'can't convert from BSON type string to Date' on server cluster0-shard-00-00-uwrbw.mongodb.net:27017. The full response is "operationTime" : "$timestamp" : "t" : 1553603169, "i" : 5 , "ok" : 0.0, "errmsg" : "can't convert from BSON type string to Date", "code" : 16006, "codeName" : "Location16006", "$clusterTime" : "clusterTime" : "$timestamp" : "t" : 1553603169, "i" : 5 , "signature" : "hash" : "$binary" : "gkjiKThKxdvt+K/4stNTlMjM9rE=", "$type" : "00" , "keyId" : "$numberLong" : "6616309008233922561"
at org.springframework.data.mongodb.core.MongoExceptionTranslator.translateExceptionIfPossible(MongoExceptionTranslator.java:131)
at org.springframework.data.mongodb.core.MongoTemplate.potentiallyConvertRuntimeException(MongoTemplate.java:2589)
at org.springframework.data.mongodb.core.MongoTemplate.execute(MongoTemplate.java:499)
at org.springframework.data.mongodb.core.MongoTemplate.executeCommand(MongoTemplate.java:437)
at org.springframework.data.mongodb.core.MongoTemplate$BatchAggregationLoader.aggregateBatched(MongoTemplate.java:3137)
at org.springframework.data.mongodb.core.MongoTemplate$BatchAggregationLoader.aggregate(MongoTemplate.java:3113)
at org.springframework.data.mongodb.core.MongoTemplate.aggregate(MongoTemplate.java:1937)
at org.springframework.data.mongodb.core.MongoTemplate.aggregate(MongoTemplate.java:1841)
mongodb aggregation-framework spring-data-mongodb
add a comment |
Below spring data mongo DB aggregation query meant to get available teachers based on who doesn't have 20 hr / 15 hr workload for a week.
public List<Calendar> findAvailableTeachersV2(List<java.util.Date> leanerPlannedSlotList, int hoursPerWeek)
log.info("TeachersAvailabilityQuery.getTeachers()");
Aggregation aggregation = Aggregation.newAggregation(
match(where("schedule.startDate").in(leanerPlannedSlotList)
.andOperator(where("schedule.status").is("AVAILABLE"))),
Aggregation.unwind("$schedule"),
project("_id", "timeZone", "schedule").and("schedule.startDate").as("startDate")
.and(DateOperators.IsoWeek.isoWeek("schedule.startDate")).as("week").and("schedule.status")
.as("status").and(LiteralOperators.Literal.asLiteral(0.5)).as("duration"),
// TODO
group("_id", "week", "status")
.addToSet(ConditionalOperators.when(Criteria.where("status").is("AVAILABLE"))
.thenValueOf("startDate").otherwise(""))
.as("startDate").push("duration").as("duration").count().as("bookedDuration"),
// TODO
// Need to check intersection
project("_id").and(SetOperators.SetIntersection.arrayAsSet("startDate").intersects("startDate"))
.as("availableSlots")
.and(ConditionalOperators.when(Criteria.where("schedule.status").is("BOOKED"))
.thenValueOf("bookedDuration").otherwise(0))
.as("bookedDuration"),
Aggregation.unwind("availableSlots", true),
// TODO
// Need to check the sum of bookedDuration
group("_id").addToSet("availableSlots").as("availableSlots").sum("bookedDuration")
.as("bookedDuration"),
// TODO
// Need to check size condition for: availableSlots
match(where("bookedDuration").gt(hoursPerWeek).andOperator(where("availableSlots").size(0).gt(0))),
Aggregation.unwind("availableSlots"), group("_id").addToSet("availableSlots").as("availableSlots"));
AggregationResults<Calendar> results = mongoOperations.aggregate(aggregation, COLLECTION_NAME, Calendar.class);
List<Calendar> calendarList = results.getMappedResults();
return calendarList;
Please refer the below Exception stack trace:
org.springframework.data.mongodb.UncategorizedMongoDbException:Command failed with error 16006: 'can't convert from BSON type string to Date' on server cluster0-shard-00-00-uwrbw.mongodb.net:27017. The full response is "operationTime" : "$timestamp" : "t" : 1553603169, "i" : 5 , "ok" : 0.0, "errmsg" : "can't convert from BSON type string to Date", "code" : 16006, "codeName" : "Location16006", "$clusterTime" : "clusterTime" : "$timestamp" : "t" : 1553603169, "i" : 5 , "signature" : "hash" : "$binary" : "gkjiKThKxdvt+K/4stNTlMjM9rE=", "$type" : "00" , "keyId" : "$numberLong" : "6616309008233922561" ; nested exception is com.mongodb.MongoCommandException: Command failed with error 16006: 'can't convert from BSON type string to Date' on server cluster0-shard-00-00-uwrbw.mongodb.net:27017. The full response is "operationTime" : "$timestamp" : "t" : 1553603169, "i" : 5 , "ok" : 0.0, "errmsg" : "can't convert from BSON type string to Date", "code" : 16006, "codeName" : "Location16006", "$clusterTime" : "clusterTime" : "$timestamp" : "t" : 1553603169, "i" : 5 , "signature" : "hash" : "$binary" : "gkjiKThKxdvt+K/4stNTlMjM9rE=", "$type" : "00" , "keyId" : "$numberLong" : "6616309008233922561"
at org.springframework.data.mongodb.core.MongoExceptionTranslator.translateExceptionIfPossible(MongoExceptionTranslator.java:131)
at org.springframework.data.mongodb.core.MongoTemplate.potentiallyConvertRuntimeException(MongoTemplate.java:2589)
at org.springframework.data.mongodb.core.MongoTemplate.execute(MongoTemplate.java:499)
at org.springframework.data.mongodb.core.MongoTemplate.executeCommand(MongoTemplate.java:437)
at org.springframework.data.mongodb.core.MongoTemplate$BatchAggregationLoader.aggregateBatched(MongoTemplate.java:3137)
at org.springframework.data.mongodb.core.MongoTemplate$BatchAggregationLoader.aggregate(MongoTemplate.java:3113)
at org.springframework.data.mongodb.core.MongoTemplate.aggregate(MongoTemplate.java:1937)
at org.springframework.data.mongodb.core.MongoTemplate.aggregate(MongoTemplate.java:1841)
mongodb aggregation-framework spring-data-mongodb
Below spring data mongo DB aggregation query meant to get available teachers based on who doesn't have 20 hr / 15 hr workload for a week.
public List<Calendar> findAvailableTeachersV2(List<java.util.Date> leanerPlannedSlotList, int hoursPerWeek)
log.info("TeachersAvailabilityQuery.getTeachers()");
Aggregation aggregation = Aggregation.newAggregation(
match(where("schedule.startDate").in(leanerPlannedSlotList)
.andOperator(where("schedule.status").is("AVAILABLE"))),
Aggregation.unwind("$schedule"),
project("_id", "timeZone", "schedule").and("schedule.startDate").as("startDate")
.and(DateOperators.IsoWeek.isoWeek("schedule.startDate")).as("week").and("schedule.status")
.as("status").and(LiteralOperators.Literal.asLiteral(0.5)).as("duration"),
// TODO
group("_id", "week", "status")
.addToSet(ConditionalOperators.when(Criteria.where("status").is("AVAILABLE"))
.thenValueOf("startDate").otherwise(""))
.as("startDate").push("duration").as("duration").count().as("bookedDuration"),
// TODO
// Need to check intersection
project("_id").and(SetOperators.SetIntersection.arrayAsSet("startDate").intersects("startDate"))
.as("availableSlots")
.and(ConditionalOperators.when(Criteria.where("schedule.status").is("BOOKED"))
.thenValueOf("bookedDuration").otherwise(0))
.as("bookedDuration"),
Aggregation.unwind("availableSlots", true),
// TODO
// Need to check the sum of bookedDuration
group("_id").addToSet("availableSlots").as("availableSlots").sum("bookedDuration")
.as("bookedDuration"),
// TODO
// Need to check size condition for: availableSlots
match(where("bookedDuration").gt(hoursPerWeek).andOperator(where("availableSlots").size(0).gt(0))),
Aggregation.unwind("availableSlots"), group("_id").addToSet("availableSlots").as("availableSlots"));
AggregationResults<Calendar> results = mongoOperations.aggregate(aggregation, COLLECTION_NAME, Calendar.class);
List<Calendar> calendarList = results.getMappedResults();
return calendarList;
Please refer the below Exception stack trace:
org.springframework.data.mongodb.UncategorizedMongoDbException:Command failed with error 16006: 'can't convert from BSON type string to Date' on server cluster0-shard-00-00-uwrbw.mongodb.net:27017. The full response is "operationTime" : "$timestamp" : "t" : 1553603169, "i" : 5 , "ok" : 0.0, "errmsg" : "can't convert from BSON type string to Date", "code" : 16006, "codeName" : "Location16006", "$clusterTime" : "clusterTime" : "$timestamp" : "t" : 1553603169, "i" : 5 , "signature" : "hash" : "$binary" : "gkjiKThKxdvt+K/4stNTlMjM9rE=", "$type" : "00" , "keyId" : "$numberLong" : "6616309008233922561" ; nested exception is com.mongodb.MongoCommandException: Command failed with error 16006: 'can't convert from BSON type string to Date' on server cluster0-shard-00-00-uwrbw.mongodb.net:27017. The full response is "operationTime" : "$timestamp" : "t" : 1553603169, "i" : 5 , "ok" : 0.0, "errmsg" : "can't convert from BSON type string to Date", "code" : 16006, "codeName" : "Location16006", "$clusterTime" : "clusterTime" : "$timestamp" : "t" : 1553603169, "i" : 5 , "signature" : "hash" : "$binary" : "gkjiKThKxdvt+K/4stNTlMjM9rE=", "$type" : "00" , "keyId" : "$numberLong" : "6616309008233922561"
at org.springframework.data.mongodb.core.MongoExceptionTranslator.translateExceptionIfPossible(MongoExceptionTranslator.java:131)
at org.springframework.data.mongodb.core.MongoTemplate.potentiallyConvertRuntimeException(MongoTemplate.java:2589)
at org.springframework.data.mongodb.core.MongoTemplate.execute(MongoTemplate.java:499)
at org.springframework.data.mongodb.core.MongoTemplate.executeCommand(MongoTemplate.java:437)
at org.springframework.data.mongodb.core.MongoTemplate$BatchAggregationLoader.aggregateBatched(MongoTemplate.java:3137)
at org.springframework.data.mongodb.core.MongoTemplate$BatchAggregationLoader.aggregate(MongoTemplate.java:3113)
at org.springframework.data.mongodb.core.MongoTemplate.aggregate(MongoTemplate.java:1937)
at org.springframework.data.mongodb.core.MongoTemplate.aggregate(MongoTemplate.java:1841)
mongodb aggregation-framework spring-data-mongodb
mongodb aggregation-framework spring-data-mongodb
edited Mar 26 at 18:28
Pete Garafano
3,55919 silver badges30 bronze badges
3,55919 silver badges30 bronze badges
asked Mar 26 at 12:35
BalaramaBalarama
85 bronze badges
85 bronze badges
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55357338%2fgetting-org-springframework-data-mongodb-uncategorizedmongodbexception-cant%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55357338%2fgetting-org-springframework-data-mongodb-uncategorizedmongodbexception-cant%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown