이전 글에서 계속.
https://www.apollographql.com/docs/engine/setup-node.html 보고 진행해보자.
미리 가입하고 키도 받아놓자.
ENGINE_API_KEY 를 잘 copy 해놓자.
app.use '/graphql',
bodyParser.json()
graphqlExpress {
schema
context: {}
tracing: true
cacheControl: true
}
먼저 /graphql 쪽 graphqlExpress 에 두개의 키(tracing, cacheControl)를 추가하자.
npm install --save compression apollo-engine
두 패키지를 설치하고
https://www.apollographql.com/docs/engine/setup-node.html 보고 진행해보자.
미리 가입하고 키도 받아놓자.
ENGINE_API_KEY 를 잘 copy 해놓자.
app.use '/graphql',
bodyParser.json()
graphqlExpress {
schema
context: {}
tracing: true
cacheControl: true
}
먼저 /graphql 쪽 graphqlExpress 에 두개의 키(tracing, cacheControl)를 추가하자.
npm install --save compression apollo-engine
두 패키지를 설치하고
compression = require 'compression'
{ Engine } = require 'apollo-engine'
압축과 엔진을 추가하고
engine을 하나 만들자.
engine = new Engine
engineConfig:
apiKey: 'service:acidsound-6459:wKt62uPKS9dmxmBhFh-cZA'
endpoint: '/api/graphql'
graphqlPort: process.env.PORT or 80
engine.start()
여기서 graphqlPort를 지정하지 않으면
Error: Neither 'graphqlPort' nor process.env.PORT is set. In order for Apollo Engine to act as a proxy for your GraphQL server, it needs to know which port your GraphQL server is listening on (this is the port number that comes before '/graphql'). If you see this error, you should make sure to add e.g. 'graphqlPort: 1234' wherever you call new Engine(...).
이런 오류를 만나게 될 것이다. 80으로 지정해주자.
미들웨어로 engine과 compression을 추가하자.
app = express()
app.use engine.expressMiddleware()
app.use compression()
express 바로 아래에 넣어주자.
마지막으로 graphqlExpress에 key 두개를 추가해주자.
app.use '/graphql',
bodyParser.json()
graphqlExpress {
schema
context: {}
tracing: true
cacheControl: true
}
tracing과 cacheControl 까지 true로 해주면 된다.
deploy하고 다시 graphiql을 보면
extensions에 tracing과 cacheControl이 생겼다.
기분 탓인가 좀 느려진 듯하다.
하지만 다시 쿼리하면 빨라진다.
아무래도 중간에서 뭔가 하니 처음엔 그루브 타는 듯.
https://engine.apollographql.com 이 계속 AWAITING CONNECTION 상태여서 외부 연결이 안되서 그런가 싶어 Blaze(종량제) 요금제로 올렸는데 별 차이는 없는 듯.
해다보니 firebase functions엔진 deploy가 매우 구리다. 느리고 실패하고 5번 연속실패 후 성공한 적도 있음.
이럴 바엔 Lambda + graphQL Engine + graphQL Server + FireStore 구성을 하는게 낫겠다 싶기도하네.
댓글
댓글 쓰기