6 questions from the last 30 days
2
votes
1
answer
77
views
Migrating Elasticsearch no subAggregation anymore
I am migrating Elasticsearch to version 7.17.29 getting rid of RestHighLevelClient
But I've encountered an issue since subAggregation is no longer present.
This is the code I am trying to migrate.
...
2
votes
1
answer
49
views
Elasticsearch replaces scroll for migration
Old scroll stuff doesn't work since migrating:
private RestHighLevelClient client;
response = client.searchScroll(new SearchScrollRequest(response.getScrollId()).scroll(TimeValue.timeValueMillis(60000)...
-4
votes
1
answer
53
views
django model with foreign key onto settings.AUTH_USER_MODEL fails when app is incorporated into other app using postgres [duplicate]
I have a survey app that works fine as a standalone app with no complaints (using sqlite).
But when I incorporate the survey app into another that is using postgres as a database, it fails to run the ...
0
votes
0
answers
45
views
How can I diff schemas between two separate Supabase projects (remote → remote) using the Supabase CLI?
I'm trying to compare the schema of two different Supabase projects (each in a separate Supabase account). My goal is to generate a migration or diff showing the differences between:
Project A (dev)
...
0
votes
1
answer
31
views
django model with foreign key onto settings.AUTH_USER_MODEL fails when app is incorporated into other app using postgres
I have a survey app that works fine as a standalone app with no complaints (using sqlite).
But when I incorporate the survey app into another that is using postgres as a database, it fails to run the ...
Best practices
0
votes
0
replies
20
views
Android / Google Play – Migrating from paid app to free app with IAP: how to preserve premium access for legacy users after uninstall?
I’m facing a migration problem with Google Play and I’d like to get feedback from other Android developers.
Context
I originally had two apps:
a paid app (premium by default)
a free app
Maintaining ...