Moray Macdonald
11/04/2020, 5:38 PMSébastien ELET
11/05/2020, 8:55 AMHealth check error
, does anyone did run a prisma server on gitlab ci ?Kel Phillipson
11/10/2020, 3:23 PMHarrison Ekpobimi
11/11/2020, 9:12 AMERROR: Variable "$input" got invalid value {"workspaceSlug":null,"clusterName":"default","serviceName":"new-leaders","stageName":"develop"}; Expected non-nullable type String! not to be null at value.workspaceSlug.
{
"errors": [
{
"message": "Variable \"$input\" got invalid value {\"workspaceSlug\":null,\"clusterName\":\"default\",\"serviceName\":\"new-leaders\",\"stageName\":\"develop\"}; Expected non-nullable type String! not to be null at value.workspaceSlug.",
"locations": [
{
"line": 2,
"column": 17
}
],
"code": 222
}
],
"status": 400
}
Juan Varela
11/17/2020, 2:34 PMworkspaceSlug
since it seems to be required for that query (Expected non-nullable type String!
) and you are not sending itTimmy Xie
11/20/2020, 4:07 PMheroku pg:copy
as discussed here.
• How would I let Prisma cloud "know" to promote the database to the new one?
Really appreciate your help!Jake
11/21/2020, 4:09 PMAhmet
11/21/2020, 8:34 PMAbhischek
11/26/2020, 2:42 PM"exception": "com.mongodb.MongoWaitQueueFullException: Too many threads are already waiting for a connection. Max number of threads (maxWaitQueueSize) of 500 has been exceeded.",
Has anyone seen this before? Are setting:
- maxIdleTimeMS=60000
- maxPoolSize=150
- waitQueueMultiple=10
sensible ways to mitigate this problem? Very grateful for any pointers if someone has faced this problem before 🙏🏾Bryan Wagemaker
11/27/2020, 2:44 PMSébastien ELET
12/02/2020, 10:06 AMJimmy Emery
12/03/2020, 3:50 PMAntoine Folie
12/06/2020, 4:55 PMnpm i -g prisma
as usual but the command is failing with the error Starting from v2.0.0 publish-please can't be installed globally.
. Did I miss an unexpected deprecation ? I cant seem to find any issue about this (so I created one: https://github.com/prisma/prisma1/issues/5134)Clio Harper
12/08/2020, 8:17 PMtype Transaction {
cancelledReason: TransactionCancelledReason
}
where the TransactionCancelledReason
is an enum defined as such:
enum TransactionCancelledReason {
CANCELLED_FULL_REVERSAL
CANCELLED_OTHER
}
When I run prisma generate
with prisma 1.34.0, the resulting output in my client file is this:
type Transaction struct {
}
This is clearly missing the cancelledReason
struct and I have the same issue for any enum field on a type. Has anyone experienced this?Lars Ivar Igesund
12/09/2020, 5:24 PMLars Ivar Igesund
12/09/2020, 5:32 PMLars Ivar Igesund
01/09/2021, 9:34 PMLars Ivar Igesund
01/10/2021, 9:58 PMHenrik Jönsson
01/11/2021, 9:58 AMshipments_none: {}
to find all deliveries that has no shipments. But this has stopped working sometime the last couple of days. So basically, even though there are deliveries without shipments, they are not returned as hits.
• Prisma docker version 1.34 is set explicitly in the Kubernetes manifest. So the pod could have been rescheduled, but Prisma version should be the same.
• I have not done any code/config changes during the holidays - when it stopped working
• Postgres 11.5 is used as database backend
Any ideas how to debug/resolve this issue would be greatly appreciatedSean McDermott
01/22/2021, 8:37 PMasync function trackableMetaRequest(parent, args, context, info) {
console.log(`-----META REQUEST START----- ${new Date(Date.now())})
const anchorMetas = await context.prisma.anchorMetas();
console.log(`-----META REQUEST AFTER GET ANCHORS----- ${new Date(Date.now())});
... more operations
}
End up printing:
-----META REQUEST START----- Fri Jan 22 2021 20:09:16 GMT+0000 (Coordinated Universal Time)
-----META REQUEST AFTER GET ANCHORS----- Fri Jan 22 2021 20:09:59 GMT+0000 (Coordinated Universal Time)
As you can see, there is a 43 second lull for this request which was not happening before. It used to take < 1 sec. We are hosted on AWS through an EC2 instance t2.medium tier running Docker. We have NGINX running reverse proxies between graphql and prisma as well, all through the Docker network. If anyone has any pointers or has experienced something similar, we'd appreciate the help! Thanks!Kieran Gillen
02/03/2021, 4:10 PMERROR: Authentication token is invalid: Token can't be decoded: Invalid signature for this token or wrong algorithm.
- I'm fully logged in and I'm able to generate a token but I can't deployIlya Lopukhin
02/04/2021, 3:46 PMLOG_LEVEL
is set to DEBUG
but i can’t really see anything meaningful to me.
Logs consist of the same loop over and over:
: {
: ...
: /* SCHEMA */
: }
: NodeSelector(com.prisma.shared.models.Model@76c53d76,ScalarField(id,com.prisma.shared.models.TypeIdentifier$Cuid$@4b522eb2,true,false,false,false,None,None,None,FieldTemplate(id,com.prisma.shared.models.TypeIdentifier$Cuid$@4b522eb2,true,false,false,false,false,None,None,None,None,None,Some(IdBehaviour(com.prisma.shared.models.FieldBehaviour$IdStrategy$Auto$@2984dc30,None))),com.prisma.shared.models.Model@76c53d76),StringIdGCValue(ckkonhbow01af0889jmoa6apq)),PrismaArgs(RootGCValue(Map(impressionsCount -> IntGCValue(100), updatedAt -> DateTimeGCValue(2021-02-04T15:20:09.114Z)))),Vector(),Vector(),Vector(),Vector(),Vector(),Vector(),Vector(),Vector(),Vector(),Vector()))))
: #11 Commit (usually some sequence number there)
A bunch of FieldTemplate(...) and RelationTemplate(...) lines
If anyone here have some insight into how can we get down to the cpu leak I would really appreciate it 🙂Artur
02/05/2021, 9:30 PMLars Ivar Igesund
02/05/2021, 10:18 PMBradly Locking
02/14/2021, 11:01 PMSuhail
02/23/2021, 4:56 AMSuhail
02/23/2021, 4:56 AMNino Vrijman
02/26/2021, 1:53 PMException in thread "main" org.postgresql.util.PSQLException: ERROR: unsupported startup parameter: search_path
Any thoughts? I have tried transaction and session mode so far without any luck.Damian Lajara
02/28/2021, 7:23 AMDamian Lajara
02/28/2021, 7:23 AM